/*
Author: David Qin
E-mail: david@hereapp.cn
Date: 2014-11-05
*/

.searchable-select-hide {
  display: none;
}

.searchable-select {
  display: block;
  width: 222px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  position: relative;
  outline: none;
  float: left;
  margin-right: 15px;
  height: 32px;
}

.searchable-select-holder{
  padding: 6px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.searchable-select-caret {
  position: absolute;

  height: 33px;
  width: 32px;
  top: 0;
  right: 0px;
  background: url(../images/select_icon.png) no-repeat center center;
}

.searchable-select-dropdown {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 4px;
  border-top: none;
  top: 34px;
  left: 0;
  right: 0;
}

.searchable-select-input {
  margin-top: 1px;
  border: 1px solid #ddd;
  outline: none;
  padding: 4px;
  width: 200px;
}

.searchable-scroll {
  margin-top: 4px;
  position: relative;
}

.searchable-scroll.has-privious {
  padding-top: 16px;
}

.searchable-scroll.has-next {
  padding-bottom: 16px;
}

.searchable-has-privious {
  top: 0;
}

.searchable-has-next {
  bottom: 0;
}

.searchable-has-privious, .searchable-has-next {
  width: 100%;
  height: 16px;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  z-index: 10;
  line-height: 8px;
  cursor: pointer;
}

.searchable-select-items {
  max-height: 150px;
  overflow-y: scroll;
  position: relative;
}

.searchable-select-items::-webkit-scrollbar {
  display: none;
}

.searchable-select-item {
  padding: 5px 5px;
  cursor: pointer;
  height: 30px;
  *height:20px;
  box-sizing: border-box;
  transition: all 1s ease 0s;
}

.searchable-select-item.hover {

  background: #a4a3a3;
  color: white;
}

.searchable-select-item.selected {
  background: #4996df;
  color: white;
}
